home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / db / Db_Close.c < prev    next >
C/C++ Source or Header  |  1989-01-13  |  2KB  |  65 lines

  1. /* 
  2.  * Db_Close.c --
  3.  *
  4.  *    Source code for the Db_Close procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/db/RCS/Db_Close.c,v 1.2 89/01/13 11:43:51 douglis Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20.  
  21. #include <db.h>
  22. #include "dbInt.h"
  23.  
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * Db_Close --
  29.  *
  30.  *    Unlock (if needed) and close the file referred to by the handle.
  31.  *
  32.  * Results:
  33.  *    -1 indicates an error, in which case errno indicates more details.
  34.  *    0 indicates success.
  35.  *
  36.  * Side effects:
  37.  *    Resets streamID to -1 and buffer to NULL to guard against use
  38.  *     after Db_Close has been called.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. int
  44. Db_Close(handlePtr)
  45.     Db_Handle *handlePtr;
  46. {
  47.     register int status;
  48.  
  49.     if (handlePtr->buffer != (char *) NULL) {
  50.     (void) free(handlePtr->buffer);
  51.     handlePtr->buffer = (char *) NULL;
  52.     }
  53. #ifndef CLEAN
  54.     (void) free(handlePtr->fileName);
  55.     handlePtr->fileName = (char *) NULL;
  56. #endif /* CLEAN */
  57.  
  58.     if (handlePtr->lockWhen == DB_LOCK_OPEN) {
  59.     (void) flock(handlePtr->streamID, handlePtr->lockType | LOCK_UN);
  60.     }
  61.     status = close(handlePtr->streamID);
  62.     handlePtr->streamID = -1;
  63.     return(status);
  64. }
  65.